home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / vimvcl30.zip / WHATS.NEW < prev   
Text File  |  1996-09-20  |  3KB  |  108 lines

  1. This file contains details of the changes in this and previous releases..
  2.  
  3. 20-Sep-96
  4.  
  5. 1. Release of preliminary 32-bit version
  6.    =====================================
  7.  
  8.    This only contains TVimSession and TVimSendMessage.
  9.  
  10. 16-Sep-96
  11.  
  12. 1. Support for gateway addresses
  13.    =============================
  14.  
  15. Addresses such as mikeg@rompaza.demon.co at INTERNET are now supported. Thanks
  16. to David Stocks at Channel 4 for his help on this one.
  17.  
  18. 2. Support for private mailing lists
  19.    =================================
  20.  
  21. TVimSendMessage now checks when addressing to see if the address points to a
  22. private mailing list and will expand it as necessary into the individual
  23. addresses.
  24.  
  25. 3. Support for public mailing lists
  26.    ================================
  27.  
  28. Public mailing lists in the format #ListName are supported
  29.  
  30.  
  31. 4. Check for unlinked parent components
  32.    ====================================
  33.  
  34. The various components now check during design time for components being
  35. removed and set the Session property to NIL.
  36.  
  37. 5. TDBVimAddressBook failing to check for unset TTable
  38.    ===================================================
  39.  
  40. This is now catered for.
  41.  
  42. 6. TVimSession - failed login
  43.    ==========================
  44.  
  45. A failed login attempt failed to clear the password property with the result
  46. that a subsequent attempt to activate the session would not bring up the
  47. login dialog. THis has been corrected.
  48.  
  49. 23-Aug-96
  50.  
  51. 1. Loading of ccMail DLL files
  52.    ===========================
  53.  
  54. This is now handled in the startup code in VIM.DCU. The code uses the [cc:Mail]
  55. section in your WIN.INI to determine where to load the DLL files from. The
  56. following example entry demonstrates the required format..
  57.  
  58. [cc:Mail]
  59. ProgramPath=C:\WINAPPS\CCMAIL
  60.  
  61. If no entry is found then the default search path will be used.
  62.  
  63. If for some reason the DLL files are not loaded then TVimSession will display a
  64. dialog box when setting TVimSession.Active to true,. The source for this dialog
  65. is contained in VDLLERR.PAS & VDLLERR.DFM. Please customize this as you see fit.
  66.  
  67. 2. Developer fails to set the Session property of any VIMVCL component
  68.    ===================================================================
  69.  
  70. This is now trapped and a message box is displayed rather than a
  71. GPF being generated.
  72.  
  73. 3. TDBVimAddressBook
  74.    =================
  75.  
  76. Added two new properties....
  77.  
  78.   IndexByName : Boolean;
  79.  
  80.     Causes a secondary index on Name to be created - default = TRUE;
  81.  
  82.   IndexByAddressAndNAme : Boolean;
  83.  
  84.     Causes a secondary index on Address + Name to be created - default = FALSE
  85.  
  86. 15-Aug-96
  87.  
  88. 1. TDBVimAddressBook
  89.    =================
  90.  
  91. This component allows the ccMail address book to be scanned into a TTable
  92. so that a TDBGrid may be used to display the address book as in the ccMail
  93. program.
  94.  
  95. This will circumvent the problem with large address books (> 16k entries)
  96. which cannotr be contained in a TStringList.
  97.  
  98. The help file has not been amended to include details of this new component
  99. at this point in time. DEMO4.DPR has been included to show how the new
  100. function may be utilised in applications.
  101.  
  102. 2. General tidying up of memory handling
  103.    =====================================
  104.  
  105. TStringList still causes memory leaks and I intend to rewrite the code to
  106. use linked lists so that these leaks do not occur.
  107.  
  108.